function PopUpC(url, winwidth, winheight)
{
	var date = new Date();
	var name = date.getTime();

	var win = OpenWin(name, url, winheight, winwidth);
}


function OpenWin(winname, loc, heightt, widthh)
{  
	tp=Math.ceil((screen.height-heightt)/2);
	lf=Math.ceil((screen.width-widthh)/2);		
	return window.open(loc,winname,"width="+widthh+",height="+heightt+",top="+tp+",left="+lf+'location=no,status=no,resizable=no,toolbar=no,scrollbars=yes,menubar=no');
}


function PopUpC2(url, winwidth, winheight)
{
	var date = new Date();
	var name = date.getTime();

	var win = OpenWin2(name, url, winheight, winwidth);
}


function OpenWin2(winname, loc, heightt, widthh)
{  
	tp=Math.ceil((screen.height-heightt)/2);
	lf=Math.ceil((screen.width-widthh)/2);		
	return window.open(loc,winname,"width="+widthh+",height="+heightt+",top="+tp+",left="+lf+'location=no,status=no,resizable=no,toolbar=no,scrollbars=yes,menubar=no');
}

