/*******************************************************
** Include file for www.xxx.se
*******************************************************/

/*******************************************************
** Opens page in frameset if someone tries to open it without
*******************************************************/

if (top.location == self.location) {
    //top.location = 'index.html';
	top.location = '../';
}
	
/************************************
Break out
*************************************/	
//Break out of the frames
function breakOut(strPage)	{
	top.location.href =  strPage;
}
	
	
/************************************
popup 
*************************************/

function popUp(strPic, strName, strPref) {
	var popupwin;
	strPref = strPref + ',toolbar=no,scrollbars=no,location=no';
	popupwin = window.open(strPic,strName,strPref);
	popupwin.focus();
}	
