function openWindow(url, windowName, width, height) {
	
	var newWindow = window.open(url, windowName, "width=" + width + ",height=" + height + ",border=0,scrollbars=1");
	
}