/* Javascrips for LOCUS
 * Created by Leo Hee Fook Yew
 * 13 DEC 2003
 */
var i=0;
function zoom(type,category,item)
{
	product = window.open("","enlarge"+i+"","width=300,height=300,top=10,left=10");
	
	if(type=="txt")
	{
		product.document.write("<html><head><title>Others products and services</title>");
		product.document.write("<link rel=stylesheet type=text/css href=locus.css>");
		product.document.write("</head><body>");
		product.document.write("<table border=0 width=100% height=100% class=body_text bgcolor=white>")
		product.document.write("<tr><td height=50><img src=others/header.jpg></td></tr>");
		product.document.write("<tr><td valign=top><p>We also sell others product for example: Copper badges, key chain, medals, tie clip, letter opener, name tag, flags, P.V.C banner, bags, magnetic gifts, plastic injection items and more.</p>");
		product.document.write("<p>Besides, we also provide services in silk-screening, stainless steel etching and aluminum etching.</p>");
		product.document.write("</td></tr>");
		product.document.write("<tr><td align='right' class='sub_title' height=10><a href='javascript:window.close()' style='color:#FFFFFF'>Close window</a></td></tr>");
		product.document.write("</table>");
		product.document.write("</body></html>");i+=1;
	}
	else if (type="pic")
	{
		product.document.write("<html><head><title>"+item+"</title>");
		product.document.write("<link rel=stylesheet type=text/css href=locus.css>");
		product.document.write("</head><body>");
		product.document.write("<table border=0 width=100% height=100% class=body_text bgcolor=white>")
		product.document.write("<tr><td align=center><img src="+category+"/zoom/"+item+".jpg><br>"+item+"</td></tr>");
		product.document.write("<tr><td align='right' class='sub_title' height=10><a href='javascript:window.close()' style='color:#FFFFFF'>Close window</a></td></tr>");
		product.document.write("</table>");
		product.document.write("</body></html>");i+=1;
	}
}

function viewMap()
{
	map = window.open("","map"+i+"","width=600,height=458,top=10,left=10");
	map.document.write("<html><head><title>Location Map</title>");
	map.document.write("<link rel=stylesheet type=text/css href=locus.css>");
	map.document.write("</head><body>");
	map.document.write("<img src=images/map.gif alt='Our location map'>");
	map.document.write("<div class=sub_title align=right><a href=javascript:window.close() style=color:white>Close Window</a></div>");
	map.document.write("</body></html>");
	i+=1;
}
