function maxOut() {
self.moveTo(0,0);
self.resizeTo(screen.width,screen.height);
}

function resizetonew(URL) {
self.moveTo(0,0);
self.resizeTo(screen.width,screen.height);
window.location.href = (URL);
}

function PopThis(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=800,height=500,left = 0,top = 0');");
}

function PopVote(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=420,height=420,left = 0,top = 0');");
}

function externalLinks() {
 if (!document.getElementsByTagName) return;
 var anchors = document.getElementsByTagName("a");
 for (var i=0; i<anchors.length; i++) {
   var anchor = anchors[i];
   if (anchor.getAttribute("href") &&
       anchor.getAttribute("rel") == "external")
     anchor.target = "_blank";
 }
}
// window.onload = externalLinks;