
function spotvideo(spotpagelink, spotwidth, spotheight) {
winContent = window.open(spotpagelink,'NextWin','right=0,top=20,width='+spotwidth+',height='+spotheight+',toolbar=no,scollbars=no,resizable=no')
winContent.focus();
}


function launchWork(work, wid, hei){
	winWork = window.open('', '_blank', 'width='+wid+',height='+hei+',resizable=1');
	var winHtml = winWork.document;
	winHtml.write('<html><head><title>'+work+'</title></head>'); 
	winHtml.write('<body style="margin: 0; padding: 0; background: #FFF;">'); 
	winHtml.write('<img src="'+work+'" style="margin: auto;" />'); 
	winHtml.write('</body></html>');
	winHtml.close(); 	
	if (window.focus)winWork.focus();

}
