// JavaScript Document
function OpenWin(width,height,url)
{
	//alert('Hello');
	ss = window.open(url,"subWnd","scrollbars,resizable,toolbar=no,Top=150,Left=150,Height="+height+",Width="+width);
	ss.focus();
	return false;
}
function OpenSubWin(windowName,width,height,url)
{
	//alert('Hello');
	ss = window.open(url,windowName,"scrollbars,resizable,toolbar=no,Top=150,Left=150,Height="+height+",Width="+width);
	ss.focus();
	return false;
}
function goBack( url )
{
	//alert("yes");
	top.location = url;
}
function del()
{
	//return confirm ("Are you sure you want to delete?");
	return confirm ("Are you sure?");
}
function closeRefreshWindow(location)
{	
	window.opener.location=location;	
	window.close();
}		