//####################################################################
// For popup window
function jWDPopUpwindow(strURL)
{
	
	var strWindow;
	strWindow = "directories=no,location=no,menubar=no,status=no,toolbar=no,scrollbars=yes,width=900,height=600,resizable=yes,titlebar=no,top=0,left=0";
	window.open (strURL,"MyWindow",strWindow);
}
//######################################################################