/*****************************************************\
|                 a:pexx - PHP4/5 CMS                 |
|               =======================               |
|        (C) Copyright 2004 by Christian Scheb        |
|              http://www.stylemotion.de              |
|                                                     |
\*****************************************************/


//***************** POPUP SMILIES ******************
function showsmilies(subdir) {
	if ( subdir=='undefined' || subdir==null ) subdir='';
fenster = window.open(subdir+"misc.php?action=smilies","showsmilies","toolbar=yes,scrollbars=yes,resizable=yes,width=320,height=450");
fenster.focus();
}


//***************** POPUP CODES ******************
function showcodes(subdir) {
	if ( subdir=='undefined' || subdir==null ) subdir='';
fenster = window.open(subdir+"misc.php?action=codes","showcodes","toolbar=no,resizable=yes,scrollbars=yes,width=450,height=350");
fenster.focus();
}

//***************** POPUP WINDOW ******************
function popupwin(url,width,height,center,resizeable) {

	if ( center=='center' ) {
	var positionx=(screen.availWidth-width)/2;
	var positiony=(screen.availHeight-height)/2;
	fenster = window.open(url,"popwin","toolbar=no,resizable="+resizeable+",scrollbars="+resizeable+",width="+width+",height="+height+",screenx="+positionx+",screeny="+positiony+",left="+positionx+",top="+positiony);
	}
	else {
	fenster = window.open(url,"popwin","Toolbar=no,resizable=yes,scrollbars=yes,width="+width+",height="+height);
	}

fenster.focus();
}
