function openLightBox(url, ifWidth, ifHeight){
	var anchorTag = document.getElementById("lightBoxInitiator");
	anchorTag.href = url + "?iframe";
	$("#lightBoxInitiator").fancybox({
		'overlayShow'			: false,
		'zoomSpeedIn'			: 600,
		'zoomSpeedOut'			: 500,
		'easingIn'				: 'easeOutBack',
		'easingOut'				: 'easeInBack',
		frameWidth			:	ifWidth,
		frameHeight			:	ifHeight
	}).trigger('click');
}
//Begin Jquery Stuff
$(function(){
	$('#netsuiteFrame').css('height','500px')
});