/**
 * Methode verwendet das Window-Objekt, um ein Popup anzuzeigen
 * @param with_login_form true oder false
 * @param pHeight Die H�he (ohne px-Zusatz)
 * @param pWidth Die Breite (ohne px-Zusatz)
 * @return
 */
function myaccount_sign_in(with_login_form,pHeight,pWidth) {
	if( !with_login_form )
		with_login_form = 'false';
	else if( with_login_form )
		with_login_form = 'true';

	sign_in_win = new Window( "mop", {
		className:"mop",
		title:false,
		url:"https://"+window.location.hostname+"/?site=sign_in&login="+with_login_form+"&content_only=true",
		width:pWidth,
		height:pHeight,
		top:100,
		left:100,
		zIndex:1000,
		showEffectOptions:{duration: 0.3},
		hideEffectOptions:{duration: 0.4},
		maximizable:false,
		minimizable:false,
		draggable:false
		}
	);
	sign_in_win.setDestroyOnClose();
	sign_in_win.showCenter(true);

	return false;
}