﻿$(document).ready(function(){
    $("ul.nav").superfish().find('ul').bgIframe({ opacity: false }); 
    $(window).bind('load', thickboxResize );  
    $(window).bind('resize', thickboxResize );
});

function openWin(win, w, h) {
	var le = (screen.availWidth - w) /2;
	var he = (screen.availHeight -h) /2;
	window.open(win,'fructidor',"height="+h+",width="+w+",status=yes,toolbar=no,scrollbars=yes,menubar=no,location=no,resizable=yes,left="+le+", top="+he,false);
}

function calendarPicker(strTxtRef) {										 									 
	openWin('/Controls/Calendar.aspx?field=' + strTxtRef +'',300,250);				
}

function thickboxResize() {   
    var viewportHeight =(self.innerHeight || (document.documentElement.clientHeight || (document.body.clientHeight || 0)))  
  
    $('a.thickbox').each(function(){  
        var text = $(this).attr("href");    
        text = text.replace(/height=[0-9]*/,'height=' + Math.round(viewportHeight * .8));              
        $(this).attr("href", text);  
    });  
}  