
function winopen(url)
{	 
var str = "height=" + 835 + ",innerHeight=" + 835;
str += ",width=" + 650 + ",innerWidth=" + 650;
if (window.screen) {
var ah = screen.availHeight - 30;
var aw = screen.availWidth - 10;
var xc = (aw - 650) / 2;
var yc = (ah - 835) / 2;
str += ",left=" + xc + ",screenX=" + xc;
str += ",top=" + yc + ",screenY=" + yc;
str += ",scrollbars=yes";
}
return window.open(url, 'cardPopUp', str);
remote.moveTo(0,0); 
remote.document.opener=self;
if (navigator.appVersion.substring(1,0)>="3") {
remote.focus(); }
}

