﻿$(document).ready(function(){
	function resizeContainer(e){
		var naviHeight = $("#sideColumn").height() + 120;
		var screenHeight = window.document.documentElement.clientHeight;
		if (naviHeight <= screenHeight) {
			$("#sideColumn").addClass("scrollFixed");
		}else{
			$("#sideColumn").removeClass("scrollFixed");
		}
	}
	$(window).bind("resize", resizeContainer);
	$(window).bind("load", resizeContainer);

	$("dl.languageNavi dt").click(function(){
		$("dl.languageNavi dd").slideToggle("fast");
	});

});


/* WINDOW POPUP ---------------------------------------------*/

function openLinkPopup(wUrl,wWidth,wHeight){
	var wObj;
//	wWidth = 650;
//	wHeight = 600;

	var winName = Math.round(Math.random()*1000);
	scWidthCenter = screen.availWidth / 2;
	scHeightCenter = screen.availHeight / 2;
	wOption =
	"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,width="
	+ wWidth + ",height=" + wHeight + ",left=" + (scWidthCenter - (wWidth /
	2)) + ",top=" + (scHeightCenter - (wHeight / 2));
	wObj = window.open(wUrl,winName,wOption);
	wObj.focus();
}

function openGalleryPopup(wUrl){
	var wObj;
//	wWidth = 650;
//	wHeight = 600;

	var winName = Math.round(Math.random()*1000);
	fullWidth = screen.availWidth;
	fullHeight = screen.availHeight;
	wOption ="titlebar=no,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=" + fullWidth +",height=" + fullHeight + ",left=0,top=0";
	wObj = window.open(wUrl,winName,wOption);
	wObj.focus();
}

/* MAILTO ---------------------------------------------*/

function getMailto(user,domain){
	locationstring = "mailto:" + user + "@" + domain;
	window.location = locationstring;
}



