﻿function newBrowserWindow(href) {
	var newWindow = window.open(href, "newBrowserWindow");
	if(!newWindow) return false;
	return true;
}

function newWindow(href) {
	var newWindow = window.open(href, "newWindow", "width=400, height=425, location=no, menubar=no, status=no, toolbar=no, scrollbars=yes, resizable=no");
	if(!newWindow) return false;
	return true;
}