function openWindowC() {

	var l = 0;
	var t = 0;
	var w = 650;
	var h = 500;

	x = (screen.width - w) / 2;
	y = (screen.height - h) / 2;
	var url="/mobile/index.html";
	subWin = window.open(url,"center","screenX="+x+",screenY="+y+",left="+x+",top="+y+",width="+w+",height="+h);

}
