

function remoteLink(winame,remoteurl){
	if (remoteurl != ""){
		var winsrc="";
		var showtag=remoteurl;
		var wn = window.open(winsrc,winame,"toolbar=yes,titlebar=no,status=no,menubar=yes,location=no,width=800,height=525");
		var link = wn.document;

		link.writeln('<HTML><HEAD>' +
		'<TITLE>Ehlers</TITLE></HEAD>' +
		'<FRAMESET ROWS="40,*" BORDER="0" FRAMESPACING="0" FRAMEBORDER="NO">' +
		'<FRAME SRC="link_control.html" scrolling=no name="linkheader" noresize>' +
		'<FRAME SRC="http://www.house.gov/htbin/leave_site?ln_url='+ showtag +'" scrolling=auto name="outlink" noresize>' +
		'</FRAMESET>' +
		'</HTML>');
	}
}


function remoteLinkHouse(winame,remoteurl){
	if (remoteurl != ""){
		var winsrc="";
		var showtag=remoteurl;
		var wn= window.open(winsrc,winame,"toolbar=yes,titlebar=no,status=no,menubar=yes,location=no,width=800,height=525");
		var link = wn.document;
		
		link.writeln('<HTML><HEAD>' +
		'<TITLE>Ehlers</TITLE></HEAD>' +
		'<FRAMESET ROWS="40,*" BORDER="0" FRAMESPACING="0" FRAMEBORDER="NO">' +
		'<FRAME SRC="link_control.html" scrolling=no name="linkheader" noresize>' +
		'<FRAME SRC="'+ showtag +'" scrolling=auto name="outlink" noresize>' +
		'</FRAMESET>' +
		'</HTML>');
	}
}