
//////////////////////////////////////////////////
//
// Java-Scripts coded by Arne Begrich
//
// Arne Begrich webcreations - Becreate.com
//
// copyright 2001-2003
//
//////////////////////////////////////////////////
//
// licensed to
//
// www.shakendrink.de / .com
//
// July / August 2003
//
//////////////////////////////////////////////////


//////////////////////////////////////////////////
//Image_MouseMoveEffects
//////////////////////////////////////////////////

function AB_move_in(img_name) {document[img_name].src='pics/' + img_name + '_on.gif'; return true;}

function AB_move_out(img_name) {
  document[img_name].src='pics/' + img_name + '.gif';
  window.status=''; return true;
  }

//////////////////////////////////////////////////
//Show PopUp
//////////////////////////////////////////////////

function AB_popup_message(nWidth,nHeight,popup_target) {

var window_content = "<HTML><HEAD><TITLE>Shake&nbsp;N'&nbsp;Drink&nbsp; -&nbsp; c o c k t a i l&nbsp;&nbsp; c a t e r i n g&nbsp;</TITLE><META http-equiv='refresh' content='2; URL="+popup_target+"'></HEAD>";
window_content += "<BODY onLoad=\"location.href = '"+popup_target+"'\" TOPMARGIN='0' LEFTMARGIN='0' MARGINWIDTH = '0' MARGINHEIGHT = '0' bgcolor='#800000' text='#CC9933' link='#FF9900' vlink='#FF9900' background='back240.gif' alink='#FF9900'><P ALIGN=CENTER><FONT FACE='verdana, arial, helvetica' SIZE='2' color='CC9933'>";
window_content += "<br><br><br><B>. . . Seiteninhalt wird geladen . . .</B><br><br>. . . bitte warten Sie . . .</FONT></P></BODY></HTML>";

    if(popup_target.substr(0,2)=="p_") {
	AB_popup_current=window.open("","Print_Popup","HEIGHT="+nHeight+",WIDTH="+nWidth+",scrollbars=yes,resizable=yes,top=50,left=50");
	AB_popup_current.document.write (window_content);
	AB_popup_current.document.close();
	AB_popup_current.focus();
	return true;
	}

    if(popup_target=="angebot.html") {
	AB_popup_current=window.open("","Message_Popup","HEIGHT="+nHeight+",WIDTH="+nWidth+",scrollbars=yes,resizable=yes,top=50,left=50");
	AB_popup_current.document.write (window_content);
	AB_popup_current.document.close();
	return true;
	}
    return false;
    }