﻿function popUp(location, w, h , screenX, screenY, menubar , scrollbars, resizable) 
{
	if( w == null ) { w = 300; }
	if( h == null ) { h = 200; }
	if(screenX == null) screenX = "150";
	if(screenY == null) screenY = "120";
	if( menubar == null) menubar = "0";
	if(scrollbars == null) scrollbars="0";
	if(resizable == null) resizable="0";	

	var toolbar = "'menubar="+menubar+",scrollbars="+scrollbars+", resizable="+resizable+",screenX="+screenX+",screenY="+screenY+", top="+screenY+", left="+screenX+",width="+w+",height="+h+"'";
	var editorWin = window.open(location,'editWin', toolbar);
	editorWin.focus(); 
}

function closeMe() {
	opener.location.reload();
	self.close();
}

function LoadImg(imgUrl)
{
	popUp("News/ViewImg.aspx?imgUrl="+imgUrl);
}

function Email(to)
{
	var domain = "@edu.net.vn";
	var name = "";
	var subject = "";
	
	switch(to)
	{
	 	case"w": 
		 	name = "quantri";
		 	subject = "?subject=Mang giao duc";
		 	break;
		 	
		case"f": 
		 	name = "diendan";
		 	subject = "?subject=Dien dan giao duc";		 	
		 	break;		 	
	}	
	
	document.location.href = "mailto:"+ name + domain + subject;
}