﻿// These profiles define the window sizes and options used by
// jquery.popupwindow.js

/* Defaults:
height:600, sets the height in pixels of the window.
width:600, sets the width in pixels of the window.
toolbar:0, determines whether a toolbar (includes the forward and back buttons) is displayed {1 (YES) or 0 (NO)}.
scrollbars:0, determines whether scrollbars appear on the window {1 (YES) or 0 (NO)}.
status:0, whether a status line appears at the bottom of the window {1 (YES) or 0 (NO)}.
resizable:1, whether the window can be resized {1 (YES) or 0 (NO)}. Can also be overloaded using resizable.
left:0, left position when the window appears.
top:0, top position when the window appears.
center:0 should we center the window? {1 (YES) or 0 (NO)}. overrides top and left */

var profiles =
{
	help: {height:500, width:620, scrollbars:1},
	detail: {height:500, width:300, scrollbars:1},
	sample: {height:600, width:700, scrollbars:1},
	login: {height:250, width:550, resizable:0, center:1},
	edit: {height:740, width:650, scrollbars:1, center:1}
};

