// JavaScript Document
function open_w(theURL,winName,features) {
	window.open(theURL,winName,features);
	}

function Wopen(){
	if (document.frm.fir.value != ""){
		window.open(document.frm.fir.value);
	}
}

function W2open(){
	if (document.frm.sec.value != ""){
		window.open(document.frm.sec.value);
	}
}

