//new window functionality (fully controllable)
function newPopUpWindow(page,winName,width,height,menu,status,location,toolbar,scrollbars,resizable) {
	window.open(page,winName, 'width='+width+', height='+height+', menubar='+menu+', status='+status+', location='+location+', toolbar='+toolbar+', scrollbars='+scrollbars+', resizable='+resizable+'');
}
