function OpenWindow(url, w, h) {
		var sbars = 'no';
		if (OpenWindow.arguments.length > 3) sbars = 'yes';
		open(url, "", 'menubar=no, directories=no, location=no, resizable=no, target=viv, scrollbars='+sbars+', width='+w+', height='+h);
}

