function showPromotion(id){
	var now = new Date();
	window.open("/shows/view/"+id, "mywindow"+now.getTime(),
    "location=0,status=0,scrollbars=0, toolbar=0, resizable=1, menubar=0, width=586,height=525");
	//alert(id);
}

function showPolicy(){
	window.open("/legal", "mywindow",
    "location=0,status=0,scrollbars=1, toolbar=0, resizable=1, menubar=0, width=517,height=550");
	//alert(id);
}

function showAdditionalDetails(url)
 {
 	var now = new Date();
	var myWindow = window.open(url, "mywindow"+now.getTime(),
    "location=0,status=0,scrollbars=0, toolbar=0, resizable=1, menubar=0, width=586,height=525");
  	myWindow.moveTo(586,0);
 } 