﻿/*load additional css for browser resolutions higher than 1024*/
if (screen.width > 1024) {
    loadcss = document.createElement('link');
    loadcss.setAttribute("rel", "stylesheet");
    loadcss.setAttribute("type", "text/css");
    loadcss.setAttribute("href", "/assets/interwinn/includes/client_res_1280.css");
    document.getElementsByTagName("head")[0].appendChild(loadcss);
}

if (/MSIE (\d+\.\d+);/.test(navigator.userAgent)) { //test for MSIE x.x;
    var ieversion = new Number(RegExp.$1) // capture x.x portion and store as a number
    if (ieversion == 6 && screen.width > 1024) {
        loadcss = document.createElement('link');
        loadcss.setAttribute("rel", "stylesheet");
        loadcss.setAttribute("type", "text/css");
        loadcss.setAttribute("href", "/assets/interwinn/includes/client_res_1280_ie6.css");
        document.getElementsByTagName("head")[0].appendChild(loadcss);
    }   
}


/*    Function to open Tell-A-Friend popup  */
function popupTellAFriend(page,site)
{
	var win = window.open('/Tellafriend.aspx?page='+page+"&amp;site="+site ,'','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=400,height=525');
}
