//**** Script used for pop-ups ****//
var newwindow;
function popUp(strURL,strType,strWidth,strHeight) 
{
	var strOptions="";
	strOptions="scrollbars,resizable,width="+strWidth+",height="+strHeight;
		newwindow=window.open(strURL, strType, strOptions);
	if (window.focus) {newwindow.focus()}
}


/*
<a href="#" onclick="popUp(this.href,'window_name',600,400);return false;" target="newWin">
Pop-up Window</a>
*/
				