/* Copyright (c) 1995-2008 Choice Hotels International, Inc. All Rights Reserved. */
function popWindow(url,windowname,width,height){var x;var y;var w;var h;if(document.all){if(document.body){x=screenLeft;y=screenTop;w=document.body.clientWidth;h=document.body.clientHeight}else {x=0;y=0;w=screen.width;h=screen.height}}else {x=screenX;y=screenY;w=outerWidth;h=outerHeight}var nWidth=parseInt(width);var nHeight=parseInt(height);x=x+((w-nWidth)/2);y=y+((h-nHeight)/2);if((x+nWidth)>screen.width)x=screen.width-width-10;if((y+nHeight)>screen.height)y=screen.height-height-10;window1=window.open(url,windowname,"toolbar=no,location=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,width="+width+",height="+height+",top="+y+",left="+x);try{window1.moveTo(x,y)}catch(e){}try{window1.resizeTo(width,height)}catch(e){}window1.focus();return window1};function URLencode(str){return escape(str).replace(/\+/g,"%2B").replace(/\"/g,"%22").replace(/\'/g,"%27").replace(/\//g,"%2F")};function openEmailFriend(url){var window1=window.open(url,"Email_Friend","toolbar=no,location=no,status=yes,menubar=no,scrollbars=no,resizable=yes,width=560,height=560");window1.focus()};function loc(href){location.href=href};