// JavaScript Document
var value1=0;
function playAlazaanRadio(){
	
		var thisdate = new Date();
		if (thisdate.getHours()==7) { value1=7; }
		if (thisdate.getHours()==8) { value1=8; }
		if (thisdate.getHours()==10) { value1=10; }
		if (thisdate.getHours()==12) { value1=12; }
		if (thisdate.getHours()==17) { value1=17; }
		if (thisdate.getHours()==19) { value1=19; }
		if (thisdate.getHours()==20) { value1=20; }
		if (thisdate.getHours()==21) { value1=21; }
	
	
	window.open("playAlazaanRadio.asp?packageId="+value1,"myWindow","directories=no,toolbar=no, width=790, height=410, resizable=0, status=0,menubar=0,location=0,screenX=500,screenY=400,top=100,left=100");
	
}