// JavaScript Document
function openCard(url,vtop,vleft,vwidth,vheight)
{
	if(vtop==null)
	if(vleft==null)
	if(vwidth=="0") {vwidth=850; }
	if(vheight=="0") {vheight=650; }
	var win_param;
	alert(vwidth);
	vwidth=vwidth+40;
	vheight=vheight+40;
	win_param="top="+vtop+",left="+vleft+",width="+vwidth+",height="+vheight+",channelmode=0,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=0,scrollbars=1,status=0,toolbar=0,screenX=0,left=125,top=60,screenY=0";
	msgWindow=open(url,"Card",win_param);
	msgWindow.focus();
	msgWindow.opener= self;
	return false;				
}
function NewWindow(url, title, w, h)
{
	/* LeftPosition =  (screen.width)?(screen.width-w)/2:0;
	TopPosition = (screen.height)?(screen.height-h)/2:0; */
	LeftPosition = 20;
	TopPosition = 20;
	settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',resizable=0,scrollbars=1,status=0';
	win = window.open(url,title,settings);
	return win;
}