// open new window function - takes url,width,height as parameters
function openWindow(sURL) {
	var sFeatures = "top=50,left=50,height=300,width=645,status=yes,scrollbars=yes,resizable=1,menubar=Menu Bar,toolbar=yes";
	var oSampWin = window.open(sURL,"_newwindow",sFeatures);
}
