var api = null;
var formUri = '/westlawnext/seeit/demo/offer/default.asp';
formUri = 'http://westapps.west.thomson.com/westlawnext/seeit/demo/offer/form.asp'

$(document).ready(function() {
	// if the function argument is given to overlay, 
    // it is assumed to be the onBeforeLoad event listener 
    api = $("#overlay").overlay({ 
 
        expose: '#000000',
		api:true, 
		closeOnClick: false,  
 
        onBeforeLoad: function() { 
 
            // grab wrapper element inside content 
            var wrap = this.getContent().find(".contentWrap"); 
 
            // load the page specified in the trigger 
            wrap.load(formUri); 
        } ,
		onLoad: function() {
			$('img.close').click(function() {
				api.close();
			})
		}
 
    }); 
	
});

function openContestForm() {
	//api.load();
	//location.href = formUri;
	window.open(formUri, 'sweepstakesform', 'width=656,height=600,menubar=0,titlebar=0,toolbar=0');
}


