/*************************************************************************

		Miscellaneous functions

*************************************************************************/

function openVideoPlayer(url,width,height) {
	w = width;
	h = height;

	LeftPosition = (screen.width)  ? (screen.width-w)  / 2 : 200;
	TopPosition  = (screen.height) ? (screen.height-h) / 2 : 150;
	settings = 'width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',resizable';

	wName = '/mediaPlayer?url='+url+'&width='+width+'&height='+height;
	window.open(wName, '_blank', settings);
}


function openwidgetcode(bannerId,artistUrlShortcut,type,width,height) {

            w = width  + 60;
            h = height + 60; 

            LeftPosition = (screen.width)  ? (screen.width-w)  / 2 : 200;
            TopPosition  = (screen.height) ? (screen.height-h) / 2 : 150;
            settings = 'width='+w+',height='+h+',top='+TopPosition+',left='+LeftPosition+',resizable';
            wName = '/'+artistUrlShortcut+'/widget?id='+bannerId+'&type='+type+'&width='+width+'&height='+height;
            window.open(wName, '_blank', settings);

}

 