var GBSNfeRemote = {
	url: "",
	
	openRemoteApplication: function() {
		var height = 520;
	    var width = 600;
	    var top = (screen.height - height) / 2;
	    var left = (screen.width - width) / 2;
		var win = window.open(GBSNfeRemote.url + "/cliente/", "GBSNfeRemote", "status, height=" + height + ", width=" + width + ", top=" + top + ", left=" + left);
		win.focus();
	},
	
	loadImage: function() {
		document.write('<img src="' + GBSNfeRemote.url + '/imagens/logoRPSmini.jpg' + '" width="120" height="123" style="cursor: pointer;"  onClick="GBSNfeRemote.openRemoteApplication();">');
	}
}