﻿// JScript File

function NewWin(url, winHeight, winWidth)
{
    var myWin = window.open(url, "NewWin", "width=" + winWidth + ",height=" + winHeight + ",scrollbars=yes,location=no,toolbar=no,menubar=no,resizable=no,top=0,left=0");
	myWin.focus();
}

function ImagePopUp(url)
{
    var height = 506;
	var width = 400;
	
	var xposition = (screen.width-width)/2;
	var yposition = (screen.height-height)/2;
	
	var argWindow = "width=" + width + ",height=" + height + ",scrollbars=no,location=no,toolbar=no,menubar=no,resizable=no,left=" + xposition + ",top=" + yposition + ",screenx=" + xposition + ",screeny=" + yposition;
	
	var newWindow = window.open( url, "ImagePopUp", argWindow );
	
	if( newWindow )
		newWindow.focus();
}

function fnImageOver(imageid)
  {
   document.getElementById("menu_" + imageid).src = "Graphics/Images/"+imageid+"_onmouse.gif";
  }
  function fnImageOut(imageid)
  {
   document.getElementById("menu_" + imageid).src = "Graphics/Images/"+imageid+"_normal.gif";
  }
  
function fnImageOver2(imageid)
  {
   //alert(imageid);
   document.getElementById("menu_" + imageid).src = "../Graphics/Images/"+imageid+"_onmouse.gif";
  }
  function fnImageOut2(imageid)
  {
    //alert(imageid);
   document.getElementById("menu_" + imageid).src = "../Graphics/Images/"+imageid+"_normal.gif";
  }
  
//  function $(id) {
//    return document.getElementById(id);
//  }
  
//  function fnSetStartupImages ()
//  {
//        if(location.href=="http://localhost/primehouse/Default.aspx") {
//        $("menu_home").src = "Graphics/Images/home_onmouse.gif";
//    }
//  }
