﻿// JScript File

function ToggleMenuHover(obj, hover)
{
    if (hover) {
        obj.style.opacity = ".6";
        obj.style.filter = "alpha(opacity=60)";
    }
    else {
        obj.style.opacity = "1";
        obj.style.filter = "alpha(opacity=100)";
    }
}

function OpenWindow(url, width, height)
{
    var x = screen.width;
	var y = screen.height;
	window.open(url, "ProductImage", "top=" + parseInt(y/2-height/2-16) + ",left=" + parseInt(x/2-width/2-5) + ",width=" + width + ",height=" + height + ",scrollbars=1, status=1");
}

function OpenFalgprovaren()
{
    var width = 760;
    var height = 442;
    var url = "/falgprovaren";
    var x = screen.width;
	var y = screen.height;
	window.open(url, "ProductImage", "top=" + parseInt(y/2-height/2-16) + ",left=" + parseInt(x/2-width/2-5) + ",width=" + width + ",height=" + height + ",scrollbars=0, status=0, resize=1");
}