// JavaScript Document
function openWin_card(url, winName) {
	wx = 700;
	wy = 1000;
	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);
	}

