function openWindow(name, url, controlname, width, height) { 
x = event.screenX;
y = event.screenY;
name = 
window.open(url+'?formname='+controlname, name, 'width=' + width + ',height=' + 
height+', top = ' + y + ', left = ' + x +''); name.focus(); 
} 
function openWindowR(name, url, controlname, width, height) { 
x = event.screenX;
y = event.screenY-295;
name = 
window.open(url+'?formname='+controlname, name, 'width=' + width + ',height=' + 
height+', top = ' + y + ', left = ' + x +', scrollbars=yes'); name.focus(); 
} 
function openWindow3(name, url, controlname, width, height) { 
x = event.screenX;
y = event.screenY;
name = 
window.open(url, name, 'width=' + width + ',height=' + 
height+', top = ' + y + ', left = ' + x +''); name.focus(); 
} 
function openWindow1(name, url, controlname, width, height) { 
	if(controlname == "center"){
		x = event.screenX - 300;
		y = event.screenY - 350;
	}
	else 
	{
		x = event.screenX + 300;
		y = event.screenY - 350;
	}
name = 
window.open(url, name, 'width=' + width + ',height=' + 
height+', scrollbars=yes'); name.focus(); 
}
function openWindow2(name, url, controlname, width, height) { 
x = event.screenX;
y = event.screenY;
name = 
window.open(url+'?formname='+controlname, name, 'width=' + width + ',height=' + 
height+', top = ' + y + ', left = ' + x +', scrollbars=yes'); name.focus(); 
}  
