// function for opening a new browser with a name and all the functionnalities
function OpenNewBrowserWithName(strURL, strName, intWidth, intHeight){
	var newWindow;
	
	newWindow = window.open(strURL,strName,'left=100,top=100,width='+intWidth+',height='+intHeight+',resizable=yes,scrollbars=yes,menubar=yes,toolbar=yes,location=yes,status=yes');
	newWindow.focus();
}

// function for opening a new window with a name and without all the functionnalities
function OpenNewWindowWithName(strURL, strName, intWidth, intHeight){
	var newWindow;
	
	newWindow = window.open(strURL,strName,'left=0,top=0,width='+intWidth+',height='+intHeight+',resizable=yes,scrollbars=yes,menubar=no,toolbar=no,location=no,status=no');
	newWindow.focus();
}

// function for opening a new browser with all the functionnalities
function OpenNewBrowser(strURL, intWidth, intHeight){
	window.open(strURL,'','left=100,top=100,width='+intWidth+',height='+intHeight+',resizable=yes,scrollbars=yes,menubar=yes,toolbar=yes,location=yes,status=yes');
}

// function for opening a new browser without all the functionnalities
function OpenNewWindow(strURL, intWidth, intHeight){
	window.open(strURL,'','left=100,top=100,width='+intWidth+',height='+intHeight+',resizable=no,scrollbars=yes,menubar=no,toolbar=no,location=no,status=no');
}