// JavaScript Document

			 function OpenClose(obj) {
			   if (document.getElementById(obj).style.display=='block') {
				 //obj.style.display='none';
				 document.getElementById(obj).style.display='none';
			   } else {
				 //obj.style.display='block';
				 document.getElementById(obj).style.display='block';
			   }
			 }
			function popUp(URL) {
				day = new Date();
				id = day.getTime();
				eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=750,height=600,left = 470,top = 200');");
			}
			function popUpVideo(URL) {
				day = new Date();
				id = day.getTime();
				eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=320,height=255,left = 470,top = 200');");
			}
			function popUpVideo2(URL) {
				day = new Date();
				id = day.getTime();
				eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=400,height=300,left = 470,top = 200');");
			}		
