﻿//SITE VARS
var winVoucher = null;
var wmSearch = "Sök tidning...";
var wmSearchBlog = "Sök i bloggen...";
var wmName = "Namn";
var wmEmail = "E-post";
var urlAgreements = "/allmana-vilkar.asp";
var urlGiftCard = "/present.asp";
var urlVoucherLogin = "http://present.tidningskungen.se/redeem.aspx";

$(document).ready(function () {
    if ($('#txtSearch') != null)
        $('#txtSearch').watermark('WaterMark', wmSearch);
    if ($('#txtSearchBlog') != null)
        $('#txtSearchBlog').watermark('WaterMark', wmSearchBlog);       
});


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 popupArticle(intArticleId) {
    window.open('/articlepopup.aspx?intId=' + intArticleId, "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 popupVoucherAgreement() {
    window.open("/voucher/order/private/voucheragreements.htm", "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)
{
	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");
}

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();    
}


