<!--// Function to open external websites and/or documents in a new window.
function blankwindow(url) {
	newwindow=window.open(url,'name','toolbar=1,scrollbars=1,location=0,statusbar=1,menubar=1,resizable=1,width=1030,height=750,left=0,top=0');
	if (window.focus) {newwindow.focus()}
	return false;
}
//-->