﻿//SITE VARS
var wmSearch = "Søk magasin...";
var wmName = "Navn";
var wmEmail = "E-post";
var urlAgreements = "/allmenne-vilkar.asp";
var urlGiftCard = "/present.asp";
var urlVoucherLogin = "http://gavekort.bladkongen.no/redeem.aspx";
var winVoucher = null;

$(document).ready(function () {
    if ($('#txtSearch') != null)
        $('#txtSearch').watermark('WaterMark', wmSearch);
});

function popupAgreement()
{
	window.open(urlAgreements,"agreement", "left="+screen.width/4+",top="+screen.height/4+",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=640,height=480");
}

function PopupPresent(intProductId, strPublicId, intGiftCard) 
{
    var win = window.open(urlGiftCard + "?product_id=" + intProductId + "&public_id=" + strPublicId + "&pic=" + intGiftCard, "present", "left=" + screen.width / 4 + ",top=" + screen.height / 4 + ",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=900,height=770");
    win.focus();
}
function PopupAgreement(intProductId, strPublicId, intGiftCard)
{
	var left = screen.width/4;
	var top = screen.height/4;
	window.open(urlGiftCard +"?product_id="+ intProductId +"&public_id=" + strPublicId +"&pic="+ intGiftCard,"present", "left="+left+",top="+top+",toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=860,height=690");
}
function PopupVoucher(value) {
    if (winVoucher != null)
        winVoucher.close();
    winVoucher = window.open(urlVoucherLogin + "?demo=" + value, "present", "left=" + screen.width / 4 + ",top=" + screen.height / 4 + "width=" + screen.width / 2 + ",height=" + screen.height / 2 + ",toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1");
    winVoucher.focus();
}
