 function openMe(page) {
	window.open(page, '', 'HEIGHT=500, WIDTH=800');
 }

 function openWindow(page, title, attributes) {
	window.open(page, title, attributes);
 }
 
 function windowClose() {
	window.close();
 }