function newWindow(theURL,winName,features) {
	var newWindow=window.open(theURL,winName,'resizable=false,scrollbars=no,toolbar=no,height=410,width=500,top=5,left=5');
	//alert(theURL);
	newWindow.focus();
	}
	
function newWindow_2(theURL,winName,features) {
	var newWindow=window.open(theURL,winName,'resizable=false,scrollbars=no,toolbar=no,height=550,width=500,top=5,left=5');
	//alert(theURL);
	newWindow.focus();
	}	
	
	
function newWindow_3(theURL,winName,features) {
	var newWindow=window.open(theURL,winName,'resizable=false,scrollbars=no,toolbar=no,height=640,width=500,top=5,left=5');
	//alert(theURL);
	newWindow.focus();
	}		

function closewindow() {
	self.close();
}

function changewindow() {
	self.moveTo(5,5);
	
	var w=500;
	var h=470;	
	//var w=screen.width * 90/100;
	//var h=screen.height * 90/100;
	self.resizeTo(w,h);
}

function changewindow_2() {
	self.moveTo(5,5);
	
	var w=500;
	var h=610;	
	//var w=screen.width * 90/100;
	//var h=screen.height * 90/100;
	self.resizeTo(w,h);
}


function changewindow_3() {
	self.moveTo(5,5);
	
	var w=500;
	var h=700;	
	//var w=screen.width * 90/100;
	//var h=screen.height * 90/100;
	self.resizeTo(w,h);
}