// ericovenom 04.2007


// NEW WINDOW - NORMAL SIZE
function goTo(where) {

	window.open(where,"sempai","");

}

// NEW WINDOW - GIVEN SIZE
function goToSized(where, winwidth, winheight) {

	window.open(where,"sempai_s","WIDTH=" + winwidth + ",HEIGHT=" + winheight);

}

function goToSized2(where, winwidth, winheight) {

	window.open(where,"sempai_s2","WIDTH=" + winwidth + ",HEIGHT=" + winheight);

}

// NEW WINDOW - ALL PARAMS
function goToSpecial(where, paramos) {

	window.open(where,"sempai_x",paramos);

}


function hoverTeaser(what) {

	document.getElementById(what).className='teaserHoverImg';

}

function unHoverTeaser(what) {

	document.getElementById(what).className='teaserImg';

}

function hoverTeaserText(what, what2) {

	document.getElementById(what).className='teaserLinkHover';
	if(what2)
		document.getElementById(what2).className='teaserLinkHover';

}

function unHoverTeaserText(what, what2) {

	document.getElementById(what).className='teaserLink';
	if(what2)
		document.getElementById(what2).className='teaserLink';

}
