/*

javascript gallery launcher

*/

function launchGifts() {
 		 myInfo = launch("http://promovement-lite.com/outdoormax",
                    "ContentsGifts",
                    "height=700,width=900,dependent=0,directories=0,fullscreen=0,location=0,menubar=0,resizable=1,scrollbars=0,status=0,titlebar=0,toolbar=0,z-lock=0", "myWindow");
		}

		// Opens window for be involved page
		function launch(newURL, newName, newFeatures, orgName) {
		  var gifts = open(newURL, newName, newFeatures);
		  if (gifts.opener == null)
		  gifts.opener = window;
		  gifts.opener.name = orgName;
		  return gifts;
		}
