function photo(im){
	var win;
	win=window.open("","PHOTO","width=360,height=420");
	win.document.write("<HTML><HEAD><TITLE>PHOTO</TITLE>\n");
	win.document.write("<style type=text/css>\n");
	win.document.write("<!--\n");
	win.document.write("BODY {margin:0;}\n");
	win.document.write("-->\n");
	win.document.write("</style></head>\n");
	win.document.write("<BODY>\n<CENTER>\n");
	win.document.write("<img src=");
	win.document.write(im);
	win.document.write(">\n");
	win.document.write("<br><br>\n<FORM>\n<input type=button value=CLOSE onclick=window.close();>\n</FORM>\n");
	win.document.write("</BODY></HTML>");
	win.document.close();
}

function showthis(obj) {
   if(!obj) return false;
   if(document.getElementById) {
      document.getElementById(obj).style.display = "inline";
   } else {
      return false;
   }
}


function hidethis(obj) {
   if(!obj) return false;
   if(document.getElementById) {
      document.getElementById(obj).style.display = "none";
   } else {
      return false;
   }
}


function news(){
	sendRequest(on_Loaded1, '', 'POST', './news/news.php', true, true);
}

function clearall(){
	document.getElementById('tv1').style.display = "none";
	document.getElementById('tv2').style.display = "none";
	document.getElementById('drama').style.display = "none";
	document.getElementById('cd').style.display = "none";
	document.getElementById('cm').style.display = "none";
	document.getElementById('movie').style.display = "none";
	document.getElementById('event').style.display = "none";
	document.getElementById('radio').style.display = "none";
	document.getElementById('video').style.display = "none";
	document.getElementById('essay').style.display = "none";
}



