////////////////////////////////////////////////////////////////////////////////
// Script:    open_window.js                                                  //
// Author:    Mark Stradling                                                  //
// Date:      30-Nov-2001                                                     //
// Copyright: Channel 4 Television                                            //
// Usage:     onClick="openWin('{URL}','{name}','{width in px}',              //
//            '{height in px}','{other window attributes}');                  //
////////////////////////////////////////////////////////////////////////////////
function openWin(popupLocation,popupName,popupWidth,popupHeight,popupAttributes) {
	eval("window.open(popupLocation,'" + popupName + "','height=" + popupHeight + ",width=" + popupWidth + popupAttributes + "');");
	return false;
}