﻿// JScript File
function showwin(id)
{ 
 //alert(id)
 if (document.getElementById(id).style.display=="block")
 {
   document.getElementById(id).style.display = "none";
 }
 else
 {
    document.getElementById(id).style.display="block";
 }
}

function showlogin(id,imgId)
{ 
 //alert(id)
 if (document.getElementById(id).style.display=="block")
 {
   document.getElementById(id).style.display = "none";
   //alert(imgId);
   document.getElementById(imgId).src = "images/probook_Forum_04.jpg";
 }
 else
 {
    document.getElementById(id).style.display="block";
    document.getElementById(imgId).src = "images/probook_Forum_09.jpg";
 }
}

function showlogin2(id)
{ 
 //alert(id)
 if (id=="InstitutionalId")
 {
   document.getElementById(id).style.display = "block";
   document.getElementById("PersonalId").style.display = "none";
   document.getElementById("Root1").style.backgroundImage ="url('images/side2_01.jpg')";
   document.getElementById("Root2").style.backgroundImage ="url('images/side2_02.jpg')";
 }
 else
 {     
    document.getElementById(id).style.display="block";
    document.getElementById("InstitutionalId").style.display = "none";
    document.getElementById("Root1").style.backgroundImage ="url('images/side_01.jpg')";
    document.getElementById("Root2").style.backgroundImage ="url('images/side_02.jpg')";
 }
}

function showlogin3(Num)
{ 
 //alert(id)
 id = "MoreData"+Num;
 imgId = "img"+Num;
 if (document.getElementById(id).style.display=="block")
 {
   document.getElementById(id).style.display = "none";
   //alert(imgId);
   document.getElementById(imgId).src = "images/probook_Forum_04.jpg";
 }
 else
 {
    document.getElementById(id).style.display="block";
    document.getElementById(imgId).src = "images/probook_Forum_09.jpg";
 }
}

