/* sivuston javascript funktiot */

var wwwroot = "";

function showHide(tabId) {
	document.getElementById(tabId).style.display=
		(document.getElementById(tabId).style.display=="none")?"block":"none";
} 
function winopen(url, width, height){
	if(width==''){
		width = 550;	
	}
	if(height==''){
		height = 400;	
	}
	hNewWindow = window.open(url,'','height='+height+',width='+width+',status=0,location=0,menubar=0,resizable=1,toolbar=0,scrollbars=1');
	if(hNewWindow.focus!=null)
		hNewWindow.focus();
}
function createEmail(email){
	return email+'@cads.fi';
}
function createSupportEmail(email){
	return email+'@cads.fi';
}
function createEmail2(email){
	return email+'@cadsplanner.com';
}
function createSupportEmail2(email){
	return email+'@cadsplanner.com';
}
function getBrochure(filename, product,lang){
	var brochureurl = wwwroot + '/files';
	if (product != ""){
		brochureurl = brochureurl + '/'+product;
	}	
	if (lang != ""){
		brochureurl = brochureurl + '/'+lang;
	}
	oNewWindow = window.open(brochureurl+ '/' + filename);
	return true;
}
function openDemoWindow(url){
	hNewWindow = window.open(url,'DEMO','Xpos=0,Ypos=0,screenX=0,screenY=0,height='+screen.height+',width='+screen.width+',status=0,location=0,menubar=0,resizable=1,toolbar=0,scrollbars=1');
	if(hNewWindow.focus!=null)
		hNewWindow.focus();
}
function openImage(imgurl, width, height){
	if(width==''){
		width = 830;	
	}
	if(height==''){
		height = 630;	
	}
	hNewWindow = window.open(imgurl,'IMAGE','Xpos=0,Ypos=0,screenX=0,screenY=0,height='+height+',width='+width+',status=0,location=0,menubar=0,resizable=1,toolbar=0,scrollbars=1');
	if(hNewWindow.focus!=null)
		hNewWindow.focus();
}
