/*
 * Thickbox 2.1 - jQuery plugin for displaying content in a box above the page
 * 
 * Copyright (c) 2006, 2007 Cody Lindley (http://www.codylindley.com)
 *
 * Licensed under the MIT License:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 *	CODED BY: Maria Beatriz N. Litao
 *	COMPANY: RaksoCT
 *	DATE: June 26, 2009
 */

// on page load call TB_init
$(document).ready(TB_init);

// add pop-up box without resize
<script type="JavaScript">
	function pop_window(url,w,h)
	{
		var height = h;
		var width = w;
		var toolbar = 'no';
		var location = 'no';
		var status = 'no';
		var directories = 'no';
		var scrollbars = 'no';
		var from_top = 350;
		var from_left = 500;
		var resizable = 'no';
		
		var atts = 'width=' + width + 'show,height=' + height + ',top=' + from_top + ',screenY=';
			atts += from_top+',left='+from_left+',screenX='+from_left+',toolbar='+toolbar;
			atts +=',location='+location+',directories='+directories+',status='+status;
			atts +=',menubar='+menubar+',scrollbars='+scrollbars+',resizable='+resizable;
			
		window.open(url,'win_name',atts);
	}
</script>