function pop_extras( strURL , strName , strScroll , strWidth , strHeight )
	{
	var strStyle
	
	strStyle = 'width=' + strWidth + ',height=' + strHeight + ',toolbar=no,location=no,directories=no'
	strStyle = strStyle + ',status=no,menubar=no,scrollbars=' + strScroll + ',copyhistory=no,resizable=no,left=150,top=150'
	
	window.open(strURL,strName,strStyle);
	}
	
function pop_extras2( strURL , strName , strScroll , strWidth , strHeight )
	{
	var strStyle
	
	strStyle = 'width=' + strWidth + ',height=' + strHeight + ',toolbar=yes,location=no,directories=no'
	strStyle = strStyle + ',status=no,menubar=yes,scrollbars=' + strScroll + ',copyhistory=no,resizable=yes'
	
	window.open(strURL,strName,strStyle);
	}	

function pop_win( strURL , strWidth , strHeight )
	{
	var strStyle
	
	strStyle = 'width=' + strWidth + ',height=' + strHeight + ',toolbar=no,location=no,directories=no'
	strStyle = strStyle + ',status=no,menubar=no,scrollbars=no,copyhistory=no,resizable=no'
	
	window.open(strURL,'PopWindow',strStyle);
	}


	
