RPCI.blankWindow = {	
		 
	width : 300,
    height : 400,
    scrollbars : 0,
    toolbar : 0,
    resizable : 0,
    menuBar : 0,
    directories : 0,
    container : 'body',
    
	init : function(){
		this.page = $("#page");
		if(this.page){
			sb.events.add(this.page, 'click', this.getContent);	
		}
	},
	
	getContent : function(e){
		var targ = sb.events.target(e);		
		if((targ.className == "_blank") && (targ.nodeName == "A") ){
			sb.events.stopAndPrevent(e);
			RPCI.blankWindow.window = window.open(targ.href, '_blankWindow', 
			'height=400,width=360,toolbar=no,menubar=no,scrollbars=no,resizable=no,location=no,directories=no,status=no');
		}
	}
}