function OpenWindow(url, width, height) {							
	myWindow = window.open(
		url, 'sdfsdf',
		'resizable=1, location=0, status=1, scrollbars=1, toolbar=0, width=' + width + ', height=' + height
	);		
	if (!myWindow.opener) myWindow.opener = self; 				
}	

function OpenBrowser(url, width, height) {							
	myWindow = window.open(
		url, 'sdfsdf',
		'resizable=1, location=1, status=1, scrollbars=1, toolbar=1, width=' + width + ', height=' + height
	);		
	if (!myWindow.opener) myWindow.opener = self; 				
}	