function fnOpenWindowImage(strURL, strName, iWidth, iHeight){
	var objWin = window.open(strURL, strName, 'toolbar=false,status=false,width='+iWidth+',height='+iHeight+',resizable=false,left=100,top=100');
	/*objWin.document.write('<table cellpadding="0" cellspacing="0" style="border:0; height:100%; width:100%;"><tr><td style="text-align:center; vertical-align:middle;">');
	objWin.document.write('<img src="' + strURL + '" alt="" />');
	objWin.document.write('</td></tr></table>');*/
	objWin.focus();
}

function fnPSKEpisodeChange(sMID) {
	var objEpi = document.getElementById("selEpisode");

	if (objEpi.options[objEpi.selectedIndex].value == 0) {
		window.location.href = 'programmes-publicity?MID=' + sMID;
	}
	else
	{
		window.location.href = 'programmes-publicity?MID=' + sMID + '&epi=' + objEpi.options[objEpi.selectedIndex].value;
	}
}