﻿// JScript File
function openwin()
{
var theHeight = '600';
var theWidth = '978';
var theTop=(screen.height/2)-(theHeight/2);
var theLeft=(screen.width/2)-(theWidth/2);
window.open('site-details-demo.aspx','mywindow','top='+theTop+',left='+theLeft+',width=978,height=600,scrollbars=yes, resizable=yes')
}
function gotosignup()
{
location.href = 'signup.aspx'
}
function highlight(cont)
{
document.getElementById(cont).style.backgroundColor = '#ccdff2'; //#a7d1fb-a4c5e7
}
function unhighlight(cont)
{
var con = (cont / 2);
con = con + ' ';
if (con.indexOf('.') > -1)
{
document.getElementById(cont).style.backgroundColor = 'Lavender'
}
else
{
document.getElementById(cont).style.backgroundColor = 'GhostWhite'
}
}
function blinkitnow() {
    // var s = document.getElementById('divblink');
      document.getElementById('divblink').style.visibility=(document.getElementById('divblink').style.visibility=='visible')?'hidden':'visible';
}
function blinkit()
{

var s = document.getElementById('divblink');
s.style.visibility=(s.style.visibility=='visible')?'hidden':'visible';
onload=setInterval('blinkit',1000)
}