/**
 * AdView class
 *
 */
var AdView = {
	_previewWin : null,

	settings : {
		fullPreviewWidth : 600,
		fullPreviewHeight : 400
	},

	init : function(settings){
		AdView.settings = settings;
	},
	
	openFullPreview : function(uri){
		AdView._previewWin = window.open (uri,"fullPreview","width="+AdView.settings.fullPreviewWidth+",height="+AdView.settings.fullPreviewHeight+",menubar=no,location=no,resizable=no,scrollbars=no,status=no");
		AdView._previewWin.focus();
	}
}
