




//+----------------------------------------------------------------------------
//
//  Function:       popUp
//
//  Description:    Launches a pop-up window
//
//  Arguments:      sUrl - the location to launch inside the pop-up
//					sName - the Name of your pop-up window
//					sAttributes - a comma-delimited list of attributes 
//					             (see HTML example)
//
//  Returns:        new window.
//
//	Compatibility:	IE,NN
//
//-----------------------------------------------------------------------------

function popUp(sUrl,sName,sAttributes) 
{
	window.open(sUrl,sName,sAttributes);
}

  /////////////////////////////////////////////////////////////////////////////////
 // SAMPLE HTML:															    //
/////////////////////////////////////////////////////////////////////////////////
/*

 <!---LINE BREAKS USED FOR READABILITY--->

 <A HREF="javascript:popUp('filename.html','newWindow',
                            'width=200px,
							   height=300px,
							   location=no,
							   scrollbars=no,
							   menubar=no);">
 Launch a pop-up
 </A>
 <P>
 For a full list of pop-up attributes goto 
 <A HREF="http://msdn.microsoft.com/library/default.asp?url=/workshop/author/dhtml/reference/methods/open_0.asp"> this link</A> 

*/
