function resizeFlash(obj){
	
   	dWidth = (window.innerWidth ? window.innerWidth : document.body.offsetWidth);
	dHeight = (window.innerHeight ? window.innerHeight : document.body.offsetHeight);
	dObj = document.getElementById(obj);
	
	if(dWidth < 800){
		dObj.style.width="800px";
	}
	else {
		dObj.style.width="100%";		
	}
				
	if(dHeight < 600){
		dObj.style.height="600px";
	}
	else {
		dObj.style.height="100%";				
	}
}

function cardlink(_kortti){
	open_divPopup('http://www.viinikassi.fi/conosur_joulu/kortti.php?'+ _kortti, 'viinikassi');
}

function designlink(){

	open_divPopup('http://www.tyomaa.com/joulu/index.html', 'viinikassi');

}

function goToJasenedut(){
	//alert('jasenedut');
	closePopup(); 
	document.location="http://www.viinikassi.fi/?redirect=kilpailu";
}

function open_divPopup(_url){
 	$("#div_popup_bg").css("display", "block");
		$("#div_popup").css("display", "block");
	$("#div_popupContent").html('<IFRAME STYLE="width:864px; height:718px; border:none;" noresize="noresize" frameborder="0" border="0" cellspacing="0" scrolling="no" marginwidth="0" marginheight="0" NAME="divpopup" SRC="'+_url+'" ALLOWTRANSPARENCY="true">');
}



function closePopup(){ 	$("#div_popup_bg").css("display", "none");
		$("#div_popup").css("display", "none");
	$("#div_popupContent").html('');
}


$(document).ready(function(){
	$("#div_popup").draggable({handle: "#div_popupHandle"});
});

