function openInfoWindow(url,x,y,Pflag){
	xp = screen.width-x-20;
	yp = 20;
	TDPInfoWindow = window.open(url,'TDPInfoWindow','screenx='+xp+',screeny='+yp+',width='+x+',height='+y+',scrollbars='+(Pflag==true?'yes':'no')+',resizable=no');
	TDPInfoWindow.focus();
	TDPInfoWindow.moveTo(xp,yp);
}
