function nextBlog(blogId,moveType) {
var blogArray = new Array();
blogArray[1] = '10 Free Yoga and Meditation Business Card Design Templates
';
blogArray[1] += 'Representing your services to clients using a sloppy and boring business card design is a big no-no. Clients can easily get...';
blogArray[1] += '';
blogArray[1] += '
';
blogArray[1] += '
';
blogArray[1] += '';
blogArray[2] = '10 Free Tanning Salon Business Card Design Templates
';
blogArray[2] += 'Are you a new tanning salon owner looking for pre-made business card designs? Well, no need to worry about the stressful...';
blogArray[2] += '';
blogArray[2] += '
';
blogArray[2] += '
';
blogArray[2] += '';
blogArray[3] = 'UPrinting Holiday Gift Guide
';
blogArray[3] += 'The Holidays are just around the corner, which means it\'s time to start shopping for gifts. UPrinting offers a full line...';
blogArray[3] += '';
blogArray[3] += '
';
blogArray[3] += '
';
blogArray[3] += '';
blogArray[4] = '20 Free Holiday Greeting Card Design Templates
';
blogArray[4] += 'There are only a few weeks to go before Christmas and you might not have the time to design your own greeting cards with...';
blogArray[4] += '';
blogArray[4] += '
';
blogArray[4] += '
';
blogArray[4] += '';
blogArray[5] = '15 Free Team Sports Business Card Design Templates
';
blogArray[5] += 'Looking for a new business card design to replace your plain and boring business cards? Get customizable team sports business...';
blogArray[5] += '';
blogArray[5] += '
';
blogArray[5] += '
';
blogArray[5] += '';
blogArray[6] = '10 Dance and Gymnastics Postcard Design Templates
';
blogArray[6] += 'Staring at your computer for hours trying to figure out the design you want for your postcards? Designing postcards on your...';
blogArray[6] += '';
blogArray[6] += '
';
blogArray[6] += '
';
blogArray[6] += '';
blogArray[7] = '10 Lovely Free Formalwear and Bridal Postcards Design Templates
';
blogArray[7] += 'So, you already have a persuasive postcard copy and your mailing list is all set. You’re sure to attract more clients with...';
blogArray[7] += '';
blogArray[7] += '
';
blogArray[7] += '
';
blogArray[7] += '';
blogArray[8] = '10 Free Recreational Sports Business Card Design Templates
';
blogArray[8] += 'Do you still rely on pen and paper when exchanging contacts with your clients? Make client interaction easier and more professional...';
blogArray[8] += '';
blogArray[8] += '
';
blogArray[8] += '
';
blogArray[8] += '';
blogArray[9] = '10 Free Hotels and Motels Postcard Design Templates
';
blogArray[9] += 'No time to design postcards for your hotel and motel? Take advantage of our free hotels and motels postcard design templates...';
blogArray[9] += '';
blogArray[9] += '
';
blogArray[9] += '
';
blogArray[9] += '';
blogArray[10] = '15 Free Men and Womens Clothes Postcard Design Templates from UPrinting
';
blogArray[10] += 'Designing postcards for your clothing store’s direct mailing campaign can be a lot of work. You need to conceptualize your...';
blogArray[10] += '';
blogArray[10] += '
';
blogArray[10] += '
';
blogArray[10] += '';
var blogId = parseInt(blogId);
if (moveType=='+') {
if (blogId < blogArray.length-1) {
blogId = blogId+1;
} else {
blogId = blogArray.length-1;
}
} else if (moveType=='-') {
if (blogId > 1) {
blogId = blogId-1;
} else {
blogId = 1;
}
}
if(document.getElementById('blogEntry'))
document.getElementById('blogEntry').innerHTML = blogArray[blogId];
if(document.getElementById('nextId'))
document.getElementById('nextId').title = blogId;
if(document.getElementById('prevId'))
document.getElementById('prevId').title = blogId;
}
function nextCoupon(couponId,moveType) {
var couponArray = new Array();
var couponId = parseInt(couponId);
if (moveType=='+') {
if (couponId < couponArray.length-1) {
couponId = couponId+1;
} else {
couponId = couponArray.length-1;
}
} else if (moveType=='-') {
if (couponId>1) {
couponId = couponId-1;
} else {
couponId = 1;
}
}
if(document.getElementById('couponEntry'))
document.getElementById('couponEntry').innerHTML = couponArray[couponId];
if(document.getElementById('nxtCoupon'))
document.getElementById('nxtCoupon').title = couponId;
if(document.getElementById('prvCoupon'))
document.getElementById('prvCoupon').title = couponId;
}
function freeFilePop(){
GB_showCenter('Free File Review', '/index.php?main_page=popup_learn_projrev', 600, 750);
}