﻿function nis(url,newwin,coords) {
window.open(url,newwin,coords);
}

function HideContent(d) {
document.getElementById(d).style.display = "none";
}

function ShowContent(d) {
document.getElementById(d).style.display = "block";
}

function ReverseContent(d) {
if(document.getElementById(d).style.display == "none") { document.getElementById(d).style.display = "block"; }
else { document.getElementById(d).style.display = "none"; }
}

function paws(){ 
var t=setTimeout("HideContent('opening')",1200)
} 

function changeopener(changethis) {
top.opener.window.location.href = changethis;
}

