/****************************************************************************
* scripts.js
* Common JavaScript functions
* date: 2005-06-13
* produced by design aspekt
* http://design-aspekt.com
***************************************************************************/

//______________________________________________________________________
// seite empfehlen
function inviteWin(link) {
	var w = 350; var h = 310;
	var x = (Math.round((screen.availWidth-w)/2));
	var y = (Math.round((screen.availHeight-h)/2)) - 20;
	iwin = open('popup_invite.php?link='+ link,'invitePopup','width=' + w + ',height=' + h + ',top=' + y + ',left=' + x + ',scrollbars=0,status=1,resizable=1,location=0,menubar=0,toolbar=0,fullscreen=0');
	iwin.focus();
}

//______________________________________________________________________
// Hilfe zur Suche
function searchHelpWin() {
	var w = 450; var h = 450;
	var x = (Math.round((screen.availWidth-w)/2));
	var y = (Math.round((screen.availHeight-h)/2)) - 20;
	iwin = open('popup_search_help.php','searchHelpPopup','width=' + w + ',height=' + h + ',top=' + y + ',left=' + x + ',scrollbars=auto,status=1,resizable=1,location=0,menubar=0,toolbar=0,fullscreen=0');
	iwin.focus();
}

//______________________________________________________________________
// seite drucken
function printWin(url) {
	var w = 700; var h = 700;
	l = Math.round(screen.availWidth/2) - Math.round(w/2);
	t = Math.round(screen.availHeight/2) - Math.round(h/2);
	if (screen.availheight<h) { h = (screen.availHeight-80); }
	if (url.indexOf('?') == -1) url = url + '?';
	pwin = open(url+'&view=print','printPopup','toolbar=yes,location=no,menubar=yes,status=no,scrollbars=yes,resizable=yes,width='+w+',height='+h+',top='+t+',left='+l);
	pwin.focus();
	pwin.setTimeout('print()', 1000);
}

//______________________________________________________________________
// Autoren Popup
function openAutorenWin() {
	var w = 570; var h = 750;
	l = Math.round(screen.availWidth/2) - Math.round(w/2);
	t = Math.round(screen.availHeight/2) - Math.round(h/2);
	if (screen.availheight<h) { h = (screen.availHeight-80); }
	pwin = open('popup_autoren.php','autorPopup','width=' + w + ',height=' + h + ',top=' + t + ',left=' + l + ',scrollbars=0,status=1,resizable=1,location=0,menubar=0,toolbar=0,fullscreen=0');
	pwin.focus();
}