﻿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);
}
