function open_project(stURL) {
	w = screen.width-40;
	h = screen.height-100;	
	proj = 'showstudio_window';
	arg = 'width='+w+',height='+h+',left=14,top=12,scrollbars=no';
	popup = (document.layers) ? window.open(stURL, proj, arg) : window.open(stURL, proj, arg);
	popup.focus();	
}

function open_biog(stURL) {
	w = screen.width-40;
	h = screen.height-100;	
	proj = 'showstudio_biog_window';
	arg = 'width='+w+',height='+h+',left=14,top=12,scrollbars=no';
	popup = (document.layers) ? window.open(stURL, proj, arg) : window.open(stURL, proj, arg);
	popup.focus();	
}

function open_scrolling(stURL, Width, Height) {
	w = Width;
	h = Height;	
	proj = 'showstudio_scroll_window';
	arg = 'width='+w+',height='+h+',left=450,top=300,scrollbars=yes,toolbar=yes';	
	popup = (document.layers) ? window.open(stURL, proj, arg) : window.open(stURL, proj, arg);
	popup.focus();
}

function pop(popURL,popNAME,popW,popH,popSCROLL) {
	arg = 'width='+popW+',height='+popH+',scrollbars='+popSCROLL;
	popup = (document.layers) ? window.open(popURL, popNAME, arg) : window.open(popURL, popNAME, arg);
	popup.focus();
}

function SHOWdate() {
	d = new Date();
	SHOWmonth = d.getMonth();
	if(SHOWmonth == 0) {SHOWmonth_string = 'Jan';}
	if(SHOWmonth == 1) {SHOWmonth_string = 'Feb';}
	if(SHOWmonth == 2) {SHOWmonth_string = 'Mar';}
	if(SHOWmonth == 3) {SHOWmonth_string = 'Apr';}
	if(SHOWmonth == 4) {SHOWmonth_string = 'May';}
	if(SHOWmonth == 5) {SHOWmonth_string = 'Jun';}
	if(SHOWmonth == 6) {SHOWmonth_string = 'Jul';}
	if(SHOWmonth == 7) {SHOWmonth_string = 'Aug';}
	if(SHOWmonth == 8) {SHOWmonth_string = 'Sep';}
	if(SHOWmonth == 9) {SHOWmonth_string = 'Oct';}
	if(SHOWmonth == 10) {SHOWmonth_string = 'Nov';}
	if(SHOWmonth == 11) {SHOWmonth_string = 'Dec';}
	SHOWday = d.getDate();
	return(SHOWmonth_string+"."+SHOWday);
}

function sticky(state) {
	if(document.getElementById) {
		document.getElementById('sticky').style.visibility = (state);
	} else if(document.layers) {
		document.layers.sticky.style.visibility = (state);
	} else {
		document.all.sticky.style.visibility = (state);
	}
}

//////////////////////// CAMOVER ////////////////////////

function camOver(overDIV) {
	shower = overDIV;
	if(document.getElementById) {
		document.getElementById(shower).style.visibility = 'visible';
	} else if(document.layers) {
		document.layers[shower].style.visibility = 'visible';
	} else {
		document.all[shower].style.visibility = 'visible';
	}
}

function camOut(outDIV) {
	hider = outDIV;
	if(document.getElementById) {
		document.getElementById(hider).style.visibility = 'hidden';
	} else if(document.layers) {
		document.layers[hider].style.visibility = 'hidden';
	} else {
		document.all[hider].style.visibility = 'hidden';
	}
}

//////////////////////// CAMOVER END ////////////////////////
