// JavaScript Document




function remoteLink(winame,remoteurl){

var winsrc="";
var showtag=remoteurl;
var wn= window.open(winsrc,winame);
var link = wn.document;

link.writeln('<HTML><HEAD>' +
'<TITLE>Holly Hughes for State Representative</TITLE></HEAD>' +
'<FRAMESET ROWS="45,*" BORDER=0>' +
'<FRAME SRC="link_control.html" scrolling=no name="linkheader" noresize>' +
'<FRAME SRC="' + showtag +'" scrolling=auto name="outlink" noresize>' +
'</FRAMESET>' +
'</HTML>');

}

