var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));

try {
var pageTracker = _gat._getTracker("UA-12722039-1");
pageTracker._trackPageview();
} catch(err) {}


//	Jaz Design & Multimedia
//	JavaScript functions - copyright 21

// 	Open window function with full menus
function openWindowFull(myURL,myWidth,myHeight) {
	siteWindow=window.open(myURL,"","toolbar=1,location=1,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,width="+myWidth+",height="+myHeight);
    siteWindow.opener=self;
	setTimeout("siteWindow.focus();",2);
}

// 	Open window function
function openWindow(myURL,myWidth,myHeight) {
	siteWindow=window.open(myURL,"","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width="+myWidth+",height="+myHeight);
    siteWindow.opener=self;
	setTimeout("siteWindow.focus();",2);
}

// 	Open window function no scroll, no resize
function openWindowNoScroll(myURL,myWidth,myHeight) {
	siteWindow=window.open(myURL,"","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width="+myWidth+",height="+myHeight);
    siteWindow.opener=self;
	setTimeout("siteWindow.focus();",2);
}

// 	Open window function no chrome
function openFrameless(myURL,myWidth,myHeight) {
	siteWindow=window.open(myURL,"","toolbar=0,location=0,directories=0,status=0,menubar=0,topBorder=0,botBorder=0,rightBorder=0,leftBorder=0,scrollbars=0,resizable=0,width="+myWidth+",height="+myHeight);
    siteWindow.opener=self;
	setTimeout("siteWindow.focus();",2);
}

// 	Open window function no menubar
function openWindowLocation(myURL,myWidth,myHeight) {
	siteWindow=window.open(myURL,"","toolbar=0,location=1,directories=0,status=0,menubar=0,scrollbars=1,framespacing=0,border=0,frameborder=0,resizable=1,width="+myWidth+",height="+myHeight);
    siteWindow.opener=self;
	setTimeout("siteWindow.focus();",2);
}

