/* Created by Medina Technology Solutions Inc.
for use by apluscopiers.net
copyright 2007 */

// mts popup function

function mepop(mylink, windowname)
{
if (! window.focus)return true;
var href;
if (typeof(mylink) == 'string')
   href=mylink;
else
   href=mylink.href;
window.open(href, windowname, 'width=540,height=295,scrollbars=no');
return false;
}