function closeWindow(){
	var w = (parent)?parent:this;
 	w.window.close();
 	return false;
}

$(document).ready(function(){ 
	$(document).bind("contextmenu",function(e){
    	return false;
  	});
  	
});
