/*
#########################################################
#
# default javascript settings for the entire site
#
# Copyright:		2000-2008 S-Inside
# Project:			Any website
# Platform:			Javascript
#
#########################################################
*/

// settings for this website
var $nImagePlaceWidth = 0; 					// place holder for big_image, how much from middle op window, default 150;
var $nImagePlaceHeight = 0;				// how much from top of page
var $sHomepage = "index.php";				// where should site go to if loaded in frame
var $nScrollFaceColor = "#31a43f";			// colors for scrollbars
var $nScrollArrowColor = "#054024";			// colors for scrollbars
var $nScrollTrackColor = "#8f8f8f";			// colors for scrollbars
var $nScrollShadowColor = "#5C5a5a";		// colors for scrollbars
var $nScrollHighlightColor = "#fbfdfc";		// colors for scrollbars
var $nScroll3dlightColor = "#e0dada";		// colors for scrollbars
var $nScrollDarkshadowColor = "#000000";	// colors for scrollbars

function MM_openBrWindow(theURL,winName,width,height) { 
	//v2.0 for Aurora Magazine
    height = height ;
    var winl = (screen.width - width) / 2;
    var wint = (screen.height - height) / 2;
    var i = width ;
    var j = height ;
    var features = 'scrollbars=no,resizable=no,width='+width+',height='+height+',top='+wint+',left='+winl+'';
    var popupscherm;
    popupscherm=window.open(theURL,winName,features);
    popupscherm.resizeTo(i,j);
    popupscherm.focus();
}

// extra stuff that should start on onload
function extraStartFunctions() {
	
	//switchImage();
	
}
