// (c) 2004 seidldesign

window.focus();

function newWin(theLink,theWidth,theHeight) {
	// get the screen size
	var theStageWidth=screen.availWidth;
	var theStageHeight=screen.availHeight;
	// calculate x & y offset
	var x=(theStageWidth - theWidth)/2;
	var y=(theStageHeight - theHeight)/2;
	// formulate all attributs
	theAttributs='width='+theWidth+',height='+theHeight+',top='+y+',left='+x+',scrollbars=no,menubar=no,directories=no';
	// pop the window up
	thePopUp=window.open(theLink, "thePopUp", theAttributs);
	// and focus it
	thePopUp.focus();
}

function GoUrl(s,mid) {
	var d=s.options[s.selectedIndex].value;
	window.top.location.href='subcontent_'+mid+'_'+d+'.html';
} 
