var win;
var theme = 'vista_glass';

function openEvaluation()
{
	if(win) win.close();
	win = new Window({className: theme, title: "Evaluate PeekStr",
		top:10, left:10, width:400, height:300, destroyOnClose: true, resizable: false,
		closable: true, minimizable: true, maximizable: false, minWidth: 260, minHeight: 210});
	win.setURL("http://polls.zoho.com/external/stojadinovicp/peekstr-evaluation");
	win.show();
    	win.setConstraint(true, {left:10, right:20, top: 1, bottom:10})
	win.toFront();
}
