// JavaScript Document
function openWin_card(url, winName) {
	wx = 750;
	wy = 800;
	x = (screen.width - wx) / 4;
	y = (screen.height - wy) / 4;
	window.open(url,winName,"resizable=1,scrollbars=1,status=1,toolbar=0,left="+x+",top="+y+",width="+wx+",height="+wy);
	}

