
// SoftwareAdsNow.com JavaScript
// Copyright (C) 2005 Digital River Inc.  All Rights Reserved.
// Created By:		Ryan Douglas <rdouglas@digitalriver.com>
// Creation Date:	20050502
// Modified Last By:	Ryan Douglas <rdouglas@digitalriver.com>
// Modification Date:	20050502


function openWindow( location, name, width, height ) {
	var features = "'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=" + width + ",height=" + height;
	var oWin = window.open( location, name, features );
}
