function OpenContentWindow(strURL,strType,strSmall,strCords)
{
	//alert(strURL);
	var arrCords = strCords.split(",");
	//alert(arrCords[0] + " -- " + arrCords[1])
	switch(strType.toLowerCase()){
		case "flash":
			OpenWindow("flash.php?url="+strURL,arrCords[0],arrCords[1],"0")
			break;
		
		case "html":
			OpenWindow(strURL,"800","600","1")
			break;
		
		case "movie":
			OpenWindow("movie.php?url="+strURL,800,660,"0");
			break;
		default :
			alert("No page !!");
			break;
	}
}

function OpenWindow(url,width,height,scroll){
	var features = "toolbar=0,scrollbars="+ scroll +",location=0,statusbar=0,menubar=0,resizable=0,width="+ width +",height="+ height +",left=" + (screen.availWidth - parseInt(width))/2 + ",top=" + (screen.availHeight - parseInt(height))/2;
	
	d = new Date();
	var strName = d.getTime();
	window.open(url,strName,features,false);
}

function AlertMe(strMessage){
	alert(strMessage);
}

function OpenOurCompettetion(){
	OpenWindow("http://iwkids.sahmlabs.com/flash.php?url=test-story.swf",800,600,"0")
}
