// JavaScript Document
function newWindow(webURL)
{
	
	var newWin = window.open(webURL, "new_window","scrollbars,resizable");
	newWin.focus();
}