function openWindowWithMobile(url){
	var w=270;
	var h=500;
	//window.open(url,'','width=width, height=height,top='+(screen.height-height)/2+',left='+(screen.width-width)/2+',toolbar=no, menubar=no, scrollbars=no, resizable=no,status=no');
		var top = (screen.availHeight-h)/2;
		var left = (screen.availWidth-w)/2;
		var options = "width=" + w + ",height=" + h + ",";
	    options += "scrollbars=auto,location=no,menubar=no,toolbar=no,directories=no,top="+top+",left="+left;
	    var newWin=window.open(url,'ieMobile', options);
	    newWin.focus();
}